function love.draw() -- The Head love.graphics.setColor(20, 20, 200) love.graphics.circle("fill", 400, 300, 200) -- The left eye love.graphics.setColor(200, 20, 20) love.graphics.circle("fill", 325, 250, 50) -- Draw the right eye here -- love.graphics.setColor( -- The nose love.graphics.triangle("fill", 400, 300, 420, 350, 380, 350) -- The mouth love.graphics.rectangle("fill", 325, 400, 150, 50) -- Add a hat? Hair? Ears? end